[PATCH] xen-libxc-static-build.patch
Fix build of the static library.
As it was depending on an undefined objects variable (OBJS), its
dependency list was null and thus it ended up empty.
Also optimize the depedency checking so we don't need a submake. Not
too great an optimization, but it makes it short :)
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
LIB := libxc.a libxc.so libxc.so.$(MAJOR) libxc.so.$(MAJOR).$(MINOR)
all: build
-build: check-for-zlib mk-symlinks
- $(MAKE) $(LIB)
+build: check-for-zlib mk-symlinks $(LIB)
check-for-zlib:
@if [ ! -e /usr/include/zlib.h ]; then \
mv staging/i386/*.rpm .
rm -rf staging
-libxc.a: $(OBJS)
+libxc.a: $(LIB_OBJS)
$(AR) rc $@ $^
libxc.so: libxc.so.$(MAJOR)